home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
ccdl150l.zip
/
IO
/
PUTS.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-25
|
144b
|
9 lines
#include <stdio.h>
int puts(char *string)
{
int rv = fputs(string,stdout);
if (rv == EOF)
return EOF;
return fputc('\n',stdout);
}